home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue57
/
Clinic
/
ActiveX.dpr
< prev
next >
Wrap
Text File
|
2000-03-24
|
376b
|
23 lines
library ActiveX;
uses
ComServ,
ActiveX_TLB in 'ActiveX_TLB.pas',
ActiveFormImpl in 'ActiveFormImpl.pas' {ActiveFormX: TActiveForm} {ActiveFormX: CoClass},
ButtonImpl in 'ButtonImpl.pas' {ButtonX: CoClass};
{$E ocx}
exports
DllGetClassObject,
DllCanUnloadNow,
DllRegisterServer,
DllUnregisterServer;
{$R *.TLB}
{$R *.RES}
begin
end.